88054d4b0c8a795be650a626d0d70e14aba7effb,core/kernel/source/jetbrains/mps/smodel/adapter/structure/MetaAdapterFactory.java,MetaAdapterFactory,getContainmentLink,#SContainmentLinkId#String#,205
Before Change
@NotNull
public static SContainmentLink getContainmentLink(SContainmentLinkId id, String linkName) {
SConceptId cid = id.getConceptId();
UUID langId = cid.getLanguageId().getIdValue();
return getContainmentLink(langId.getMostSignificantBits(), langId.getLeastSignificantBits(), cid.getIdValue(), id.getIdValue(), linkName);
}
After Change
@NotNull
public static SContainmentLink getContainmentLink(SContainmentLinkId id, String linkName) {
SConceptId cid = id.getConceptId();
SLanguageId langId = cid.getLanguageId();
return getContainmentLink(langId.getHighBits(), langId.getLowBits(), cid.getIdValue(), id.getIdValue(), linkName);
}